COM AT^SVCL Get current language for SRE/SSE - Speech file management
COM V1.0	08.12.04	T. Kleinmann	Started
COM V1.1 	27.01.05	T. Kleinmann    Re-worked according to new R75 Draft
COM V1.2	22.02.2005	T. Kleinmann	added Todo's

####################################################################################################
# ToDo(S3): Check returned language more precisely
# ToDo: What has to be clarified is the following: ISO 639-2 describes a language with tree characters
#	(e.g. English: eng, but it has to be check which format the mobile accepts)
#       AT command specification doe snot describe how the format of the language should be given: no quotes, single- or double quotes?
####################################################################################################

from attglobals import *

####################################################################################################

COM Test command
AT^SVCL=?
WAIT FOR OK

####################################################################################################

COM Read command - Returned language_sre and language_sse has to be checked in more detail
AT^SVCL?
WAITFOR  (1,',')

####################################################################################################

COM Set both languages for SRE and SSE
AT^SVCL="en-GB",0
WAIT FOR OK

####################################################################################################

COM Set only SRE language
AT^SVCL="en-US",1
WAIT FOR OK

####################################################################################################

COM Set only SSE language
AT^SVCL="en-GB",2
WAIT FOR OK

####################################################################################################
